home *** CD-ROM | disk | FTP | other *** search
/ Floppyshop 2 / Floppyshop - 2.zip / Floppyshop - 2.iso / diskmags / 0022-3.564 / dmg-0085 / 297.txt < prev    next >
Text File  |  1997-04-16  |  12KB  |  354 lines

  1. =========================================================================
  2.  
  3. INFO-ATARI16 Digest         Thu,  8 Mar 90       Volume 90 : Issue  297
  4.  
  5. Today's Topics:
  6.                                 GEMINI
  7.                              Gulam Source
  8.            How do you create non-scrolling screen regions?
  9.                           SIMMs for the STE
  10.                        Space Ace Demo (3 msgs)
  11.                  STE DMA sound (documentation posted)
  12.                                   TT
  13.                             Wanted: Books
  14. ----------------------------------------------------------------------
  15.  
  16. Date: 7 Mar 90 21:09:06 GMT
  17. From:
  18.  uokmax!munnari.oz.au!cluster!metro!bunyip!moondance!uqcspe.cs.uq.oz.au!marshall
  19.  @apple.com  (Marshall Harris)
  20. Subject: GEMINI
  21. Message-ID: <2896@moondance.cs.uq.oz.au>
  22.  
  23. In article <2895@moondance.cs.uq.oz.au> marshall@uqcspe.cs.uq.oz.au writes:
  24. >Internet/CSnet:     marshall@uqcspe.cs.uq.oz.au || Dept.of Computer Science
  25. >JANET:    marshall%uqcspe.cs.uq.oz.au@uk.ac.ukc || University of Queensland
  26. >EAN:                   marshall@uqcspe.cs.uq.oz || St Lucia, Queensland 4067
  27. >Bitnet:marshall%uqcspe.cs.uq.oz.au@uunet.uu.net || Australia
  28. >UUCP:    uunet!munnari!uqcspe.cs.uq.oz!marshall || ph:+61 7 377 2909
  29. >JUNET:              marshall@uqcspe.cs.uq.oz.au || fax:+61 7 371 0783
  30.  
  31.  For some strange reason, the content of my message was munged and only
  32. the email etc address was posted!
  33. What I was trying to say was:
  34. I would love to use Gemini, but I have a 1985-vintage 1040ST, with TOS1.0.
  35. How do I upgrade the TOS? Where d'ya get it? Is it a chip? Can a clumsy bloke
  36. like me install it? How much does it cost?
  37. I can send $US, PoundsUK, DMDeutschland, or whatever. Better still, does
  38. anyone here down-under in Aussie land have it?
  39. Thanks.
  40.  
  41. ------------------------------
  42.  
  43. Date: 6 Mar 90 01:19:46 GMT
  44. From: mcsun!ukc!reading!csug.cs.reading.ac.uk!djd1@uunet.uu.net
  45. Subject: Gulam Source
  46. Message-ID: <2099@onion.reading.ac.uk>
  47.  
  48.         This is mainly for 'L.J.Dickey', who tried to contact me regarding the
  49. source code for gulam, but I would be grateful to anyone else who could help
  50. by telling me where I could get it.
  51.  
  52.         I don't know whether all the gumf at the top of the screen actually does
  53. allow anyone to reach me (I suspect not), but the address below (in the box)
  54. is one that arrived on a message from ljdickey@edu.waterloo.water, so I know
  55. that one works.
  56.  
  57.         ( I tried to mail you but it bounced - thanks for trying :-) )
  58.  
  59. Cheers,
  60.                 David.
  61.  
  62. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  63. |   David J. Dawkins    |   djd1%UK.AC.reading.cs.rosemary@uk.ac.nsfnet-relay |
  64. |   Reading University  |                                                     |
  65. |   Berkshire           |        Uhh..Something prophetic,witty,disclamatory..    |
  66. |   United Kingdom      |                                                         |
  67. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  68.  
  69. ------------------------------
  70.  
  71. Date: 7 Mar 90 21:53:32 GMT
  72. From: cs.umn.edu!thelake!steve@ub.d.umn.edu  (Steve Yelvington)
  73. Subject: How do you create non-scrolling screen regions?
  74. Message-ID: <A2125468775@thelake.mn.org>
  75.  
  76. [In article <2344@ultb.isc.rit.edu>,
  77.      ajy2208@ultb.isc.rit.edu (A.J. Yarusso) writes ... ]
  78.  
  79. >   I need to know how to create region(s) on the screen that are
  80. > independent from normal screen i/o (mainly, scrolling..).  Most terminal
  81. > programs have a line or two somewhere on the screen that doesn't scroll.
  82. > Usually these are status displays to show useful information (baud rate,
  83. > system connected to, various toggles, etc..).
  84.  
  85. Of course, you can do all that (and more) with GEM, but GEM is difficult
  86. and slow. The fast way is to use Line A.
  87.  
  88. >   I've searched my wonderful MWC manual, but there's no mention on how
  89. > to create something to this effect.
  90.  
  91. To translate the following for MWC, you'll need to look at the linea.h
  92. file in your \include\ directory. It's coded for Sozobon C and Sozobon
  93. assembler.
  94.  
  95. =cut here===========================
  96. * LINEA.S -- assemble this function with jas.ttp; don't optimize it
  97.         .text
  98.         .globl  _getlinea
  99. _getlinea:
  100.         .dc.w   $a000
  101.         rts
  102.  
  103. =cut here===========================
  104.  
  105. /*
  106.  * STATBAR.C
  107.  * cc -O -DTEST statbar.c linea.o
  108.  */
  109.  
  110. #include <stdio.h>
  111.  
  112. #define    XP    -28    /* where the current cursor X value is stored */
  113. #define    YP    -26    /* where the current cursor Y value is stored */
  114.  
  115. #define    LINES -42    /* where screen's size in lines is stored */
  116. #define    COLS  -44    /* where screen's size in columns is stored */
  117.  
  118. #define IP(x)    ((int*)(linea+(x)))  /* isn't C a pretty sight? */
  119.  
  120. static long linea;
  121. extern long getlinea();
  122.  
  123. lkbar()
  124.  
  125.     linea = getlinea();
  126.     (*IP(LINES))--;
  127.  
  128.  
  129. unlkbar()
  130.  
  131.     (*IP(LINES))++;
  132.  
  133.  
  134. clrbar()
  135.  
  136.     statmsg("\033K",0);
  137.  
  138.  
  139.  
  140. statmsg(msg, x)
  141. char *msg;
  142. int x;
  143.  
  144.     int xp, yp;
  145.  
  146.     xp = *IP(XP);        /* Save cursor's row      */
  147.     yp = *IP(YP);        /* and column             */
  148.  
  149.     unlkbar();           /* unlock the status bar  */
  150.     printf("\033Y%c%c%s\033Y%c%c",
  151.         32 + *IP(LINES), /* Go to the bottom line  */
  152.         32+x,            /* and column x           */
  153.         msg,             /* write the message      */
  154.         32+yp,           /* go back to where       */
  155.         32+xp);          /* we came from           */
  156.     lkbar();             /* lock the status bar    */
  157.  
  158.  
  159. #ifdef TEST
  160. /*
  161.  * A little demo of the status bar
  162.  */
  163. main()
  164.     
  165.     int i;
  166.     printf("\033E"); /* clear screen, home cursor */
  167.     printf("This is a demonstration of a status bar\n");
  168.  
  169.     lkbar();
  170.     clrbar();
  171.     /*
  172.      * note that you should not end a status msg with a newline!
  173.      */
  174.     statmsg("\033pThis is printed on the status line\033q",3);
  175.     for (i=1; i<101; i++)
  176.         
  177.         printf("This is line number %d\n", i);
  178.         
  179.     clrbar();
  180.     statmsg("\033pPress any key to exit\033q",3);
  181.     getch();
  182.     unlkbar();
  183.     
  184. #endif
  185.  
  186. --
  187.    Steve Yelvington at the lake in Minnesota
  188.    UUCP path: ... umn-cs.cs.umn.edu!thelake!steve
  189.  
  190. ------------------------------
  191.  
  192. Date: 7 Mar 90 17:56:24 GMT
  193. From: mcsun!ukc!edcastle!aimd@uunet.uu.net  (M Davidson)
  194. Subject: SIMMs for the STE
  195. Message-ID: <2668@castle.ed.ac.uk>
  196.  
  197. In article <2069@atari.UUCP> apratt@atari.UUCP (Allan Pratt) writes:
  198. >The SIMMs are there mainly for the cost and space savings on the PC
  199. >board, not so you can add memory to your machine.  Sometimes we use
  200. >SIPs, not SIMMs, and they're soldered right into the board! Don't rush
  201. >out and buy a 520STe expecting to be able to upgrade it.
  202.  
  203. Who should we contact in order to change this policy?
  204.  
  205. I believe this would be in the interest of saving Atari from becoming a
  206. worldwide laughing stock....
  207.  
  208. Obviously Atari never bothered to tell UK magazines that the SIMMS
  209. weren't a feature of the machine so when they opened the machine SIMMS
  210. were what they found - can you blame them for assuming this to be a
  211. 'feature' of the machine (rather like the square 68000 being a 'feature')?
  212.  
  213. Amiga owners (sorry!) just take off a panel on their machines and shove in
  214. a 60 quid upgrade. How can the STE be a 'machine for the 90s' if we
  215. still have to fart around with soldering irons or making sure that our
  216. MMU and Shifter are socketed so that we can fit a board???
  217.  
  218. Mark.
  219.  
  220. ------------------------------
  221.  
  222. Date: 7 Mar 90 23:44:22 GMT
  223. From: cs.utexas.edu!psurge@tut.cis.ohio-state.edu  (Troy Carpenter)
  224. Subject: Space Ace Demo
  225. Message-ID: <8081@cs.utexas.edu>
  226.  
  227. In article <1109.25f544d3@miavx1.acs.muohio.edu>,
  228.  rlcollins@miavx1.acs.muohio.edu writes:
  229. > Has anyone tried to get the Space Ace demo from xanth.cs.odu.edu? I tried
  230. > but it gave me permission denied.
  231. >
  232.  
  233. Yeah, I just tried it and the read bit is not set...
  234.  
  235. > When you're a superhero
  236. > hard work is easy"
  237. >  -Dufus from Ducktails
  238.  
  239. Hey, I saw that episode!
  240.  
  241.                               Troy Carpenter
  242.                       Department of Computer Sciences
  243.                       THE University of Texas, Austin
  244.                            psurge@cs.utexas.edu
  245.  
  246. ------------------------------
  247.  
  248. Date: 7 Mar 90 22:28:51 GMT
  249. From: pacific.mps.ohio-state.edu!ohstpy!miavx1!rlcollins@tut.cis.ohio-state.edu
  250. Subject: Space Ace Demo
  251. Message-ID: <1109.25f544d3@miavx1.acs.muohio.edu>
  252.  
  253. Has anyone tried to get the Space Ace demo from xanth.cs.odu.edu? I tried
  254. but it gave me permission denied.
  255.  
  256.                         Ryan
  257. --
  258.  
  259. "When you have Super Powers,                  rlcollins@miavx1.BITNET
  260. hard work is easy"                             rc1dsanu@miamiu.BITNET
  261.  -Dufus from Ducktails
  262.  
  263.  
  264. ------------------------------
  265.  
  266. Date: 7 Mar 90 22:37:57 GMT
  267. From:
  268.  pacific.mps.ohio-state.edu!zaphod.mps.ohio-state.edu!wuarchive!mailrus!accuvax.
  269.  nwu.edu!nims@tut.cis.ohio-state.edu  (Chris Nims)
  270. Subject: Space Ace Demo
  271. Message-ID: <4833@accuvax.nwu.edu>
  272.  
  273. Has anyone else noticed that the Space Ace Demo on xanth.cs.odu.edu doesn't
  274. have the read bit set for 'other's ? ;-)
  275.  
  276. Chris Nims
  277. Northwestern University
  278.  
  279. ------------------------------
  280.  
  281. Date: 6 Mar 90 08:08:24 GMT
  282. From:
  283.  imagen!atari!portal!portal!cup.portal.com!Bob_BobR_Retelle@ucbvax.Berkeley.EDU
  284. Subject: STE DMA sound (documentation posted)
  285. Message-ID: <27607@cup.portal.com>
  286.  
  287. Greg Lindahl says:
  288.  
  289. >  ... Atari bringing out docs
  290. >won't put ST books into Waldenbooks. Only bigger sales of ST books
  291. >will put ST books into Waldenbooks.
  292.  
  293. Er, umm... actually, when Atari asks little third-party developers,
  294. "What can WE do to help you", the most overwhelming answer is:
  295. "SELL MORE STs!"
  296.  
  297. Thus the REAL  solution to the above situation is:
  298.  
  299. "Atari bringing out docs won't put ST books into Waldenbooks. Only bigger
  300. sales of *ST COMPUTERS* will put ST books into Waldenbooks."
  301.  
  302. BobR
  303.  
  304. ------------------------------
  305.  
  306. Date: 7 Mar 90 23:49:29 GMT
  307. From:
  308.  zaphod.mps.ohio-state.edu!brutus.cs.uiuc.edu!ux1.cso.uiuc.edu!deimos!uafhp!uafh
  309.  cx!dhe@tut.cis.ohio-state.edu  (David Ewing)
  310. Subject: TT
  311. Message-ID: <3829@uafhp.uark.edu>
  312.  
  313. In article <6154@blake.acs.washington.edu>, ramsiri@blake.acs.washington.edu
  314.  (Enartloc Nhoj) writes:
  315. > According to many "officials" at ATARI...
  316. > some who have written to me personally,
  317. >
  318. > **  The  TT  will be available in TWO WEEKS! **
  319. > Question:  which ones will have SIMMS and which will have SIPS..?
  320. > Question 2: will the TT boot only into low-res?
  321. > Question 3: will i need folderxxx.prg?
  322.  
  323.     You left out two really major questions:
  324. 1) How much is Atari going to sell them for? (Exact price, none of this 'less
  325.                                               than xxxx computer system'..)
  326. 2) Where can users find the TT (or when will dealers get them)?
  327.  
  328.          -Dave
  329.  
  330. ==============================================================================
  331.  dhe@uafhcx.uark.edu                      David Ewing, University of Arkansas
  332.  dhe@uafb15.uark.edu   "DON'T PANIC!!!"       Computer Science Engineering
  333. ==============================================================================
  334.  
  335. ------------------------------
  336.  
  337. Date: 7 Mar 90 22:55:56 GMT
  338. From: zaphod.mps.ohio-state.edu!usc!jarthur!dcrevier@tut.cis.ohio-state.edu
  339.  (Dan Crevier)
  340. Subject: Wanted: Books
  341. Message-ID: <4946@jarthur.Claremont.EDU>
  342.  
  343. I am interested in buying any used programming books that anyone wants to
  344. sell.  The only reference I have right now is the Laser C manual, which is
  345. great, but I would like to get some more.
  346.  
  347. Dan Crevier
  348.  
  349. dcrevier@jarthur.claremont.edu
  350.  
  351. ------------------------------
  352.  
  353. End of INFO-ATARI16 Digest V90 Issue #297
  354. *****************************************